From: Andrew Cooper Date: Wed, 27 Mar 2019 19:52:17 +0000 (+0000) Subject: x86/vvmx: Fix debug prints to not have 17 unnecessary spaces X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~2418 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=82a9e0aa193cacd9ae9fe37deff5de9ccd4212ad;p=xen.git x86/vvmx: Fix debug prints to not have 17 unnecessary spaces This has been problematic since its introduction in Xen 4.3 Signed-off-by: Andrew Cooper Reviewed-by: Jan Beulich Acked-by: Kevin Tian --- diff --git a/xen/arch/x86/hvm/vmx/vvmx.c b/xen/arch/x86/hvm/vmx/vvmx.c index 9f6ea5c1f7..991445e476 100644 --- a/xen/arch/x86/hvm/vmx/vvmx.c +++ b/xen/arch/x86/hvm/vmx/vvmx.c @@ -920,8 +920,8 @@ static void vvmcs_to_shadow_bulk(struct vcpu *v, unsigned int n, if ( !value || n > VMCS_BUF_SIZE ) { - gdprintk(XENLOG_DEBUG, "vmcs sync fall back to non-bulk mode, \ - buffer: %p, buffer size: %d, fields number: %d.\n", + gdprintk(XENLOG_DEBUG, "vmcs sync fall back to non-bulk mode, " + "buffer: %p, buffer size: %d, fields number: %d.\n", value, VMCS_BUF_SIZE, n); goto fallback; } @@ -960,8 +960,8 @@ static void shadow_to_vvmcs_bulk(struct vcpu *v, unsigned int n, if ( !value || n > VMCS_BUF_SIZE ) { - gdprintk(XENLOG_DEBUG, "vmcs sync fall back to non-bulk mode, \ - buffer: %p, buffer size: %d, fields number: %d.\n", + gdprintk(XENLOG_DEBUG, "vmcs sync fall back to non-bulk mode, " + "buffer: %p, buffer size: %d, fields number: %d.\n", value, VMCS_BUF_SIZE, n); goto fallback; }